PlaylistType

Defines the different types or categories of playlists available in the RevelDigital player system.

The playlist type often dictates how the content within the playlist is handled, rendered, or scheduled. For example, a TICKER playlist would likely have different rendering characteristics and constraints than a GALLERY (multimedia) playlist.

Each type is associated with an underlying integer value, which might be used for persistence or communication with other parts of the system.

See also

// Example: How this enum might be used by a Playlist object

Entries

Link copied to clipboard

Represents a multimedia playlist (value: 0), typically containing a mix of various media types like videos, images, and web content, often intended for main display zones.

Link copied to clipboard

Represents a slideshow playlist (value: 1), primarily composed of images, often with specific transition effects and display timings.

Link copied to clipboard

Represents a marquee or ticker playlist (value: 2), designed for scrolling text or small image feeds, usually displayed in a continuous loop in a specific screen region.

Link copied to clipboard

Represents a template-based playlist (value: 3), where content items populate predefined zones within a larger design template.

Functions

Link copied to clipboard
Converts a string representation of a playlist type into the corresponding PlaylistType enum constant.
Link copied to clipboard
open fun valueOf(name: String): PlaylistType

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.